home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CDICTION / CFILLEDB.H < prev    next >
Text File  |  1989-09-15  |  671b  |  25 lines

  1. /*****************************************************************************
  2. CFilledBorder.h
  3.  
  4.     Subclass of CBorder that erases its interior.
  5.     
  6.     by Dan Podwall - you may do anything you please with this code except
  7.     charge for it, with the exception of normal network download charges.
  8.         
  9. *****************************************************************************/
  10.  
  11.  
  12. #define _H_CFilledBorder
  13.  
  14. #include "CBorder.h"
  15.  
  16. struct CFilledBorder : CBorder
  17. {
  18.  
  19.     void        IFilledBorder(CView *anEnclosure, CBureaucrat *aSupervisor,
  20.                         short aWidth, short aHeight,
  21.                         short aHEncl, short aVEncl,
  22.                         SizingOption aHSizing, SizingOption aVSizing);
  23.     void        Draw(Rect *area);
  24.     
  25. };